@nadeshikon/plugin-nextjs
Version:
Run Next.js seamlessly on Netlify
14 lines (10 loc) • 335 B
JavaScript
import { RouterHooksFixtures } from '../../../components/router-hooks-fixtures'
export default function Page() {
return <RouterHooksFixtures />
}
export const getStaticProps = () => {
return { props: {} }
}
export const getStaticPaths = () => {
return { fallback: 'blocking', paths: [{ params: { id: '1' } }] }
}